home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple Reference & Presen…rary 6 (Reseller Edition)
/
Apple Ref. & Pres. Lib.v6.0.toast
/
pc
/
3-Presentations
/
Apple Demos
/
Training
/
AppleCD SC Training
/
General 1
/
background_18213.txt
< prev
next >
Wrap
Text File
|
1990-04-02
|
2KB
|
103 lines
-- background: 18213 from stack: in
-- bmap block id: 25384
-- flags: 0000
-- background id: 0
-- name:
-- part 6 (button)
-- low flags: 00
-- high flags: 2000
-- rect: left=414 top=2 right=31 bottom=450
-- title width / last selected line: 0
-- icon id / first selected line: 8525 / 8525
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Next
----- HyperTalk script -----
on mouseUp
visual effect barn door open
go to next card
visual effect dissolve
go to next card
end mouseUp
-- part 11 (button)
-- low flags: 00
-- high flags: 0000
-- rect: left=424 top=287 right=333 bottom=468
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name:
----- HyperTalk script -----
on mouseUp
go to card "Sectwo" of stack Ruby 2-1-88
end mouseUp
-- part 12 (button)
-- low flags: 00
-- high flags: 0002
-- rect: left=477 top=2 right=20 bottom=511
-- title width / last selected line: 0
-- icon id / first selected line: 1300 / 1300
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Start-Up
----- HyperTalk script -----
on mouseUp
global nav_Path
---find out WHERE on the icon you clicked
put (item 1 of the clickLoc) - (item 1 of the Loc of me) into E
---if the click was on the left then
if E < 0 then
set icon of me to 1301
wait 1
set icon of me to 1300
push card
put PathWay() & "SN Feedback" into feedPath
set cursor to watch
visual effect dissolve fast
go stack feedPath
---if the click was on the right then
else if E > 0 then
set icon of me to 1302
wait 1
set icon of me to 1300
visual effect iris close to black
visual effect iris open
if nav_Path = empty then put "card Welcome of stack Support Navigator:Support Navigator" into nav_Path
go nav_Path
end if
end mouseUp
function pathWay
put the long name of stack "Home" into NewName
delete char 1 to 7 of NewName
repeat
if not(NewName contains ":") then
exit repeat
else
put char 1 to offset(":",NewName) of NewName after NewPath
delete char 1 to offset(":",NewName) of NewName
end if
end repeat
return NewPath
end pathWay